home *** CD-ROM | disk | FTP | other *** search
/ This Disc Bytes! / Power Computing - The Disc 2 - This Disc Bytes.ISO / pc / codewarr / macossup / headers / ansihead / unistd.h < prev    next >
Text File  |  1995-08-02  |  3KB  |  132 lines

  1. /*
  2.  *    File:        unistd.h
  3.  *                ©1993-1995 metrowerks Inc. All rights reserved
  4.  *    Author:        Berardino E. Baratta
  5.  *
  6.  *    Content:    Interface file to standard UNIX-style entry points ...
  7.  *
  8.  *    NB:            This file implements some UNIX low level support.  These functions
  9.  *                are not guaranteed to be 100% conformant.
  10.  */
  11.  
  12. #ifndef    _UNISTD
  13. #define    _UNISTD
  14.  
  15. #pragma options align=mac68k
  16. #pragma direct_destruction off
  17.  
  18. #ifndef _STDIO
  19.     /* macros for whence parameter of lseek() (taken from <stdio.h> */
  20.     #define SEEK_SET    0
  21.     #define SEEK_CUR    1
  22.     #define SEEK_END    2
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. /*
  30.  *    Change the current directory.
  31.  */
  32. int chdir(const char *path);
  33.  
  34. /*
  35.  *    Closes an open file.
  36.  */
  37. int close(int fildes);
  38.  
  39. /*
  40.  *    Returns the user name associated with the current process.  For the mac we always return
  41.  *    the login name.  If string is not NULL, it must be at least FILENAME_MAX large.
  42.  */
  43. char *cuserid(char *string);
  44.  
  45. /*
  46.  *    Launches the application fname and then quits upon succesful launch.
  47.  *    NB: all exec calls pass through this one call, since argument passing (argc, argv) doesn't
  48.  *        exist for mac applications.
  49.  */
  50. int exec(const char *path, ...);
  51. #define execl            exec
  52. #define execv            exec
  53. #define execle            exec
  54. #define execle            exec
  55. #define execve            exec
  56. #define execlp            exec
  57. #define execvp            exec
  58.  
  59. /*
  60.  *    Get the current directory.
  61.  */
  62. char *getcwd(char *buf, int size);
  63.  
  64. /*
  65.  *    The following UNIX functions don't really have any meaning on the Mac, so we just
  66.  *    return values that would make sense for a typical user process under UNIX ...
  67.  */
  68.  
  69. #define getpid()        ((int) 9000)
  70. #define getppid()        ((int) 8000)
  71. #define getuid()        ((int) 200)
  72. #define geteuid()        ((int) 200)
  73. #define getgid()        ((int) 100)
  74. #define getegid()        ((int) 100)
  75. #define getpgrp()        ((int) 9000)
  76.  
  77. /*
  78.  *    The Mac doesn't have a login, so we just return the Owner Name from the Sharing Setup
  79.  *    Control Panel.
  80.  */
  81. char *getlogin(void);
  82.  
  83. /*
  84.  *    Determines is a specified fileid is attached to the console.
  85.  */
  86. int isatty(int fildes);
  87.  
  88. /*
  89.  *    Seek on a file stream.
  90.  */
  91. long lseek(int fildes, long offset, int whence);
  92.  
  93. /*
  94.  *    Reads from a file stream.
  95.  */
  96. int read(int fildes, char *buf, int count);
  97.  
  98. /*
  99.  *    Delete a directory.
  100.  */
  101. int rmdir(const char *path);
  102.  
  103. /*
  104.  *    Delay program execution for a specified number of seconds.
  105.  */
  106. unsigned int sleep(unsigned int sleep);
  107.  
  108. /*
  109.  *    Returns the name of the terminal associated with the fileid, or NULL if fileid doesn't
  110.  *    specify a terminal.
  111.  */
  112. char *ttyname(int fildes);
  113.  
  114. /*
  115.  *    Unlink (delete) a file.
  116.  */
  117. int unlink(const char *path);
  118.  
  119. /*
  120.  *    Writes to a file stream.
  121.  */
  122. int write(int fildes, const char *buf, int count);
  123.  
  124. #ifdef __cplusplus
  125. }
  126. #endif
  127.  
  128. #pragma options align=reset
  129. #pragma direct_destruction reset
  130.  
  131. #endif
  132.